1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- .messageCollapse {
- padding: 0 0.12rem 0.12rem;
- :global(.adm-list-body-inner) {
- // background: #32343a;
- // box-shadow: 0 0 15px #34a7bb inset;
- // border: 1px solid #46e3ff;
- border-radius: 0.1rem;
- background-color: #1f2830;
- }
- :global(a.adm-list-item:active:not(.adm-list-item-disabled)) {
- // background-color: #32343a;
- }
- :global(.adm-collapse-panel-content) {
- // background: #32343a;
- margin-bottom: 10px;
- }
- }
- .emailBox {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: stretch;
- .content {
- flex: 1;
- min-height: 0;
- overflow: auto;
- padding: 0 0.12rem 0.12rem;
- }
- .footer {
- .btns {
- display: flex;
- background-color: #161b1f;
- justify-content: space-between;
- box-sizing: border-box;
- padding: 0.12rem;
- button {
- width: 47%;
- color: #121c1b;
- height: 0.38rem;
- border-radius: 0.19rem;
- &:nth-child(1) {
- background-color: #11de68;
- }
- &:nth-child(2) {
- background-color: #ecc720;
- }
- }
- }
- }
- .emailItem {
- display: flex;
- align-items: center;
- justify-content: space-between;
- background-color: #1f2830;
- margin-bottom: 0.12rem;
- border-radius: 0.1rem;
- padding: 0.12rem;
- }
- .doGet {
- color: #ebc71f;
- font-size: 0.14rem;
- }
- .title {
- width: 60%;
- div:nth-child(1) {
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- }
- .gift {
- width: 0.24rem;
- }
- }
|